# Tag 标签

# 基础用法

MillTag(
  '山不在高有仙则名,水不在深有龙则灵',
  showClose: false,
  onClose: (id) {
    print(id);
  },
),
Padding(padding: EdgeInsets.only(left: 10)),
MillTag(
  '苹果',
  showClose: false,
  type: MillTagType.normal,
),
Padding(padding: EdgeInsets.only(left: 10)),
MillTag(
  '香蕉',
  type: MillTagType.warning,
),
Padding(padding: EdgeInsets.only(left: 10)),
MillTag(
  '橘子',
  type: MillTagType.error,
),

tag

# Attributes

字段名称 说明 类型 默认值
showClose 是否展示关闭图标 bool true
onClose 关闭回调 Function
color 背景色 Color Color(0xfff0f0f0)
textColor 字体色 Color Color(0xff343434)
height 高度 double 28
fontSize 字体大小 double 14
maxWidth 最大宽度 double 160
type 风格类型 MillTagType